From 087adc9638f0641d678414c9a3e5d65a18b5d087 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 9 Jul 2008 16:00:05 +0100 Subject: [PATCH] minios: Add missing fcntl.h. Signed-off-by: Keir Fraser --- extras/mini-os/include/posix/fcntl.h | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 extras/mini-os/include/posix/fcntl.h diff --git a/extras/mini-os/include/posix/fcntl.h b/extras/mini-os/include/posix/fcntl.h new file mode 100644 index 0000000000..ecfd8c848c --- /dev/null +++ b/extras/mini-os/include/posix/fcntl.h @@ -0,0 +1,11 @@ +#ifndef _POSIX_FCNTL_H +#define _POSIX_FCNTL_H + +#include_next + +#define F_ULOCK 0 +#define F_LOCK 1 +#define F_TLOCK 2 +#define F_TEST 3 + +#endif /* _POSIX_FCNTL_H */ -- 2.30.2